home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / dpmigcc5.zip / RSX / SOURCE / DJLIBRSX / WAIT.S < prev   
Text File  |  1994-05-27  |  175b  |  12 lines

  1. /    int wait ( int *status )
  2.  
  3.     .globl    _wait
  4. _wait:
  5.     movw    $0x7f09, %ax
  6.         int     $0x21
  7.     movl    4(%esp), %ecx
  8.     jecxz    1f
  9.         movl    %edx, (%ecx)
  10. 1:
  11.         ret
  12.